home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / guienv374.lha / GUIEnvironment / OberonA / Install.script < prev    next >
Text File  |  1994-11-03  |  2KB  |  82 lines

  1.  
  2. ; Script file to install guienvironment for OberonA
  3.  
  4. FailAt 20
  5.  
  6. Echo "*nGUIEnvironment V37.4 © 1994 Carsten Ziegeler"
  7. Echo "*nInstallation Script for OberonA*n"
  8. Echo "*nWARNING: This script does no version check ! If you have already"
  9. Echo "         installed a version of GUIEnvironment, please check which"
  10. Echo "         one is the newer one !"
  11. Echo "*nMake sure that you have made the OBERON-A: and OLIB: assigns !"
  12. Ask "*nDo you want to install GUIEnvironment V37.4 for OberonA ?"
  13.  
  14. If NOT WARN
  15.   Skip Aborted
  16. EndIf
  17.  
  18. Echo "Copying interface modules..."
  19. Copy Source Oberon-A:Source ALL CLONE QUIET
  20. Echo "Copying examples..."
  21. Copy Examples Oberon-A:Examples ALL CLONE QUIET
  22. Echo "Copying examples environment (catalogs, menu guide)..."
  23. Copy /Examples/catalogs Oberon-A:Examples/GUIEnvironment/catalogs ALL CLONE QUIET
  24. Copy /Examples/#?.guide#? Oberon-A:Examples/GUIEnvironment ALL CLONE QUIET
  25.  
  26. Echo "*NCompiling new interface modules"
  27. Ask "Continue [y/n]?"
  28. IF NOT WARN
  29.   Skip Aborted
  30. EndIf
  31.  
  32. Stack 10000
  33.  
  34. Echo "Press CTRL-C to interrupt at any time*N"
  35.  
  36. OBERON-A:C/OC NS DST OLIB: DEBUG BATCH compile.bat
  37.  
  38. Echo "*NCompiling and linking OberonA examples"
  39. Ask "Continue [y/n]?"
  40. IF NOT WARN
  41.   Skip Aborted
  42. EndIf
  43.  
  44. IF NOT EXISTS OBERON-A:Examples/GUIEnvironment/Code
  45.   MakeDir OBERON-A:Examples/GUIEnvironment/Code
  46. ENDIF
  47.  
  48. Stack 10000
  49.  
  50. Echo "Press CTRL-C to interrupt at any time*N"
  51.  
  52.  
  53. OBERON-A:C/OC SYM OBERON-A:Examples/GUIEnvironment/Code/ DST OBERON-A:Examples/GUIEnvironment/Code/ DEBUG BATCH compileExamples.bat
  54.  
  55. PCD OBERON-A:Examples/GUIEnvironment
  56.  
  57. OBERON-A:C/OL SRC CODE/ DST Code/ BOOPSIExample
  58. OBERON-A:C/OL SRC CODE/ DST Code/ GuideExample
  59. OBERON-A:C/OL SRC CODE/ DST Code/ NotifyExample
  60. OBERON-A:C/OL SRC CODE/ DST Code/ ResizingExample
  61. OBERON-A:C/OL SRC CODE/ DST Code/ RequesterExample
  62.  
  63. OBERON-A:C/BLink WITH CODE/BOOPSIExample.with NODEBUG
  64. OBERON-A:C/BLink WITH CODE/GuideExample.with NODEBUG
  65. OBERON-A:C/BLink WITH CODE/NotifyExample.with NODEBUG
  66. OBERON-A:C/BLink WITH CODE/ResizingExample.with NODEBUG
  67. OBERON-A:C/BLink WITH CODE/RequesterExample.with NODEBUG
  68.  
  69. PCD
  70.  
  71. Echo "*nInstallation complete.*n"
  72. Skip END
  73.  
  74. Lab ABORTED
  75.  
  76. Echo "*nInstallation aborted!*n"
  77.  
  78. Lab END
  79.  
  80. Wait 5
  81. EndCLI >NIL:
  82.